home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000357_news@columbia.edu_Thu Sep 14 15:47:22 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06202
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 14 Sep 1995 09:17:05 -0400
  3. Received: by apakabar.cc.columbia.edu id AA05271
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 14 Sep 1995 09:17:04 -0400
  5. Path: news.columbia.edu!sol.ctr.columbia.edu!news.uoregon.edu!news.sprintlink.net!cs.utexas.edu!howland.reston.ans.net!tank.news.pipex.net!pipex!dispatch.news.demon.net!demon!mail2news.demon.co.uk!koala.melbpc.org.au
  6. From: Graham Jenkins <grahamj@gkja.melbpc.org.au>
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: MS-Kermit 3.14 - Problem with Wyse-50 Emulation
  9. Date: Thu, 14 Sep 95 15:47:22 GMT
  10. Lines: 30
  11. Message-Id: <811093642@gkja>
  12. X-Nntp-Posting-Host: koala.melbpc.org.au
  13. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  14.  
  15. One of our Applications suppliers is using sequences as shown in
  16. the example below for marking screen-areas to stand out.
  17. Unfortunately, the "revert-to-normal" bit doesn't work quite the
  18. same under KERMITE (mid-95 3.14 release) with a Wyse50 emulation
  19. as it does on a real Wyse50.  Is there perhaps a patch for this?
  20.  
  21. ---
  22. #!/bin/sh
  23. # wy50test.sh    Tests screen feature escape codes for Wyse-50 with
  24. #        MSKermit-3.14 (mid-'95 release, kermite).
  25.  
  26. # Sledgehammer reset
  27. echo "\0033(\0033\`A\0033A00-NORMAL\c"
  28. sleep 3
  29.  
  30. # Standout (Reverse character protect, write protect)
  31. echo "\0033\`6\0033)-STANDOUT\c"
  32. sleep 3
  33.  
  34. # Normal
  35. echo "\0033(-NORMAL\c"
  36. sleep 3
  37.  
  38. # Sledgehammer reset
  39. echo "\0033(\0033\`A\0033A00-END"
  40. exit 0
  41. ---
  42.  
  43.